home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / include / coff / arm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  5.5 KB  |  220 lines

  1. /*** coff information for the ARM */
  2.  
  3.  
  4. /********************** FILE HEADER **********************/
  5.  
  6. struct external_filehdr {
  7.     char f_magic[2];    /* magic number            */
  8.     char f_nscns[2];    /* number of sections        */
  9.     char f_timdat[4];    /* time & date stamp        */
  10.     char f_symptr[4];    /* file pointer to symtab    */
  11.     char f_nsyms[4];    /* number of symtab entries    */
  12.     char f_opthdr[2];    /* sizeof(optional hdr)        */
  13.     char f_flags[2];    /* flags            */
  14. };
  15.  
  16. /* Bits for f_flags:
  17.  *    F_RELFLG    relocation info stripped from file
  18.  *    F_EXEC        file is executable (no unresolved external references)
  19.  *    F_LNNO        line numbers stripped from file
  20.  *    F_LSYMS        local symbols stripped from file
  21.  *    F_AR32WR    file has byte ordering of an AR32WR machine (e.g. vax)
  22.  */
  23.  
  24. #define F_RELFLG    (0x0001)
  25. #define F_EXEC        (0x0002)
  26. #define F_LNNO        (0x0004)
  27. #define F_LSYMS        (0x0008)
  28.  
  29.  
  30.  
  31. #define    ARMMAGIC    0xa00  /* I just made these up */
  32.  
  33. #define ARMBADMAG(x) (((x).f_magic != ARMMAGIC))
  34.  
  35. #define    FILHDR    struct external_filehdr
  36. #define    FILHSZ    20
  37.  
  38.  
  39. /********************** AOUT "OPTIONAL HEADER" **********************/
  40.  
  41.  
  42. typedef struct 
  43. {
  44.   char     magic[2];        /* type of file                */
  45.   char    vstamp[2];        /* version stamp            */
  46.   char    tsize[4];        /* text size in bytes, padded to FW bdry*/
  47.   char    dsize[4];        /* initialized data "  "        */
  48.   char    bsize[4];        /* uninitialized data "   "        */
  49.   char    entry[4];        /* entry pt.                */
  50.   char     text_start[4];        /* base of text used for this file */
  51.   char     data_start[4];        /* base of data used for this file */
  52.  
  53.  
  54. }
  55. AOUTHDR;
  56.  
  57.  
  58. #define AOUTSZ 28
  59. #define AOUTHDRSZ 28
  60.  
  61. #define OMAGIC          0404    /* object files, eg as output */
  62. #define ZMAGIC          0413    /* demand load format, eg normal ld output */
  63. #define STMAGIC        0401    /* target shlib */
  64. #define SHMAGIC        0443    /* host   shlib */
  65.  
  66.  
  67. /* define some NT default values */
  68. /*  #define NT_IMAGE_BASE        0x400000 moved to internal.h */
  69. #define NT_SECTION_ALIGNMENT 0x1000
  70. #define NT_FILE_ALIGNMENT    0x200  
  71. #define NT_DEF_RESERVE       0x100000
  72. #define NT_DEF_COMMIT        0x1000
  73.  
  74. /********************** SECTION HEADER **********************/
  75.  
  76.  
  77. struct external_scnhdr {
  78.     char        s_name[8];    /* section name            */
  79.     char        s_paddr[4];    /* physical address, aliased s_nlib */
  80.     char        s_vaddr[4];    /* virtual address        */
  81.     char        s_size[4];    /* section size            */
  82.     char        s_scnptr[4];    /* file ptr to raw data for section */
  83.     char        s_relptr[4];    /* file ptr to relocation    */
  84.     char        s_lnnoptr[4];    /* file ptr to line numbers    */
  85.     char        s_nreloc[2];    /* number of relocation entries    */
  86.     char        s_nlnno[2];    /* number of line number entries*/
  87.     char        s_flags[4];    /* flags            */
  88. };
  89.  
  90. #define    SCNHDR    struct external_scnhdr
  91. #define    SCNHSZ    40
  92.  
  93. /*
  94.  * names of "special" sections
  95.  */
  96. #define _TEXT    ".text"
  97. #define _DATA    ".data"
  98. #define _BSS    ".bss"
  99. #define _COMMENT ".comment"
  100. #define _LIB ".lib"
  101.  
  102. /********************** LINE NUMBERS **********************/
  103.  
  104. /* 1 line number entry for every "breakpointable" source line in a section.
  105.  * Line numbers are grouped on a per function basis; first entry in a function
  106.  * grouping will have l_lnno = 0 and in place of physical address will be the
  107.  * symbol table index of the function name.
  108.  */
  109. struct external_lineno {
  110.     union {
  111.         char l_symndx[4];    /* function name symbol index, iff l_lnno == 0*/
  112.         char l_paddr[4];    /* (physical) address of line number    */
  113.     } l_addr;
  114.     char l_lnno[2];    /* line number        */
  115. };
  116.  
  117.  
  118. #define    LINENO    struct external_lineno
  119. #define    LINESZ    6
  120.  
  121.  
  122. /********************** SYMBOLS **********************/
  123.  
  124. #define E_SYMNMLEN    8    /* # characters in a symbol name    */
  125. #define E_FILNMLEN    14    /* # characters in a file name        */
  126. #define E_DIMNUM    4    /* # array dimensions in auxiliary entry */
  127.  
  128. struct external_syment 
  129. {
  130.   union {
  131.     char e_name[E_SYMNMLEN];
  132.     struct {
  133.       char e_zeroes[4];
  134.       char e_offset[4];
  135.     } e;
  136.   } e;
  137.   char e_value[4];
  138.   char e_scnum[2];
  139.   char e_type[2];
  140.   char e_sclass[1];
  141.   char e_numaux[1];
  142. };
  143.  
  144. #define N_BTMASK    (0xf)
  145. #define N_TMASK        (0x30)
  146. #define N_BTSHFT    (4)
  147. #define N_TSHIFT    (2)
  148.   
  149. union external_auxent {
  150.     struct {
  151.         char x_tagndx[4];    /* str, un, or enum tag indx */
  152.         union {
  153.             struct {
  154.                 char  x_lnno[2]; /* declaration line number */
  155.                 char  x_size[2]; /* str/union/array size */
  156.             } x_lnsz;
  157.             char x_fsize[4];    /* size of function */
  158.         } x_misc;
  159.         union {
  160.             struct {        /* if ISFCN, tag, or .bb */
  161.                 char x_lnnoptr[4];    /* ptr to fcn line # */
  162.                 char x_endndx[4];    /* entry ndx past block end */
  163.             } x_fcn;
  164.             struct {        /* if ISARY, up to 4 dimen. */
  165.                 char x_dimen[E_DIMNUM][2];
  166.             } x_ary;
  167.         } x_fcnary;
  168.         char x_tvndx[2];        /* tv index */
  169.     } x_sym;
  170.  
  171.     union {
  172.         char x_fname[E_FILNMLEN];
  173.         struct {
  174.             char x_zeroes[4];
  175.             char x_offset[4];
  176.         } x_n;
  177.     } x_file;
  178.  
  179.     struct {
  180.         char x_scnlen[4];    /* section length */
  181.         char x_nreloc[2];    /* # relocation entries */
  182.         char x_nlinno[2];    /* # line numbers */
  183.         char x_checksum[4];    /* section COMDAT checksum */
  184.         char x_associated[2];    /* COMDAT associated section index */
  185.         char x_comdat[1];    /* COMDAT selection number */
  186.     } x_scn;
  187.  
  188.         struct {
  189.         char x_tvfill[4];    /* tv fill value */
  190.         char x_tvlen[2];    /* length of .tv */
  191.         char x_tvran[2][2];    /* tv range */
  192.     } x_tv;        /* info about .tv section (in auxent of symbol .tv)) */
  193.  
  194.  
  195. };
  196.  
  197. #define    SYMENT    struct external_syment
  198. #define    SYMESZ    18    
  199. #define    AUXENT    union external_auxent
  200. #define    AUXESZ    18
  201.  
  202.  
  203. #    define _ETEXT    "etext"
  204.  
  205.  
  206. /********************** RELOCATION DIRECTIVES **********************/
  207.  
  208.  
  209.  
  210. struct external_reloc {
  211.   char r_vaddr[4];
  212.   char r_symndx[4];
  213.   char r_type[2];
  214.   char r_offset[4];
  215. };
  216.  
  217.  
  218. #define RELOC struct external_reloc
  219. #define RELSZ 14
  220.